home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_13_06 / pjp / iostream < prev    next >
Text File  |  1995-04-06  |  329b  |  15 lines

  1. ------------- Listing 1: The file iostream ------------------
  2.  
  3.  
  4. // iostream standard header
  5. #ifndef _IOSTREAM_
  6. #define _IOSTREAM_
  7. #include <fstream>
  8.                 // standard stream declarations
  9. extern istream cin;
  10. extern ostream cout;
  11. extern ostream cerr;
  12. extern ostream clog;
  13. static ios::Init _Ios_init;
  14. #endif
  15.